runtime.pollDesc.atomicInfo (field)
8 uses
runtime (current package)
netpoll.go#L94: atomicInfo atomic.Uint32 // atomic pollInfo
netpoll.go#L139: return pollInfo(pd.atomicInfo.Load())
netpoll.go#L163: x := pd.atomicInfo.Load()
netpoll.go#L164: for !pd.atomicInfo.CompareAndSwap(x, (x&pollEventErr)|info) {
netpoll.go#L165: x = pd.atomicInfo.Load()
netpoll.go#L174: x := pd.atomicInfo.Load()
netpoll.go#L179: for (x&pollEventErr != 0) != b && !pd.atomicInfo.CompareAndSwap(x, x^pollEventErr) {
netpoll.go#L180: x = pd.atomicInfo.Load()
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |